home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / IIS5_01.CAB / IIS_iiwiznew.str < prev    next >
Encoding:
Text File  |  1999-05-12  |  3.2 KB  |  81 lines

  1. <%
  2. ' localizable strings for new node wizards
  3.  
  4. Const L_TITLE = "New Site Wizard"
  5. Const L_WIZARD_TEXT = ""
  6.  
  7. 'Page 1 - Welcome
  8. Const L_WELCOME_HEAD = "Welcome to the IIS New Site Wizard"
  9. Const L_WELCOME1 = "You use this wizard to create new sites and directories which allow your users to access your content."
  10. Const L_WELCOME2 = ""
  11. Const L_WELCOME3 = "Click Next to continue or Cancel to exit the new site wizard."
  12.  
  13. 'Page 7 - FINISH
  14. Const L_FINISH_HEAD = "Congratulations"
  15. Const L_FINISH1 = "You have successfully completed the IIS New Site Wizard."
  16. Const L_FINISH2 = ""
  17. Const L_FINISH3 = "Click Close to continue."
  18. Const L_NEWNODEADDED = "You have added:" 
  19.  
  20. 'Page 2
  21. Const L_SITETYPE = "Publish on the Internet"
  22. Const L_SITETYPE_DESC = "How would you like to publish your content?"
  23. Const L_VDIR = "Virtual Directory"
  24. Const L_DIR = "Directory"
  25. Const L_SITE = "Site"
  26. Const L_WEBSITE = "Web Site"
  27. Const L_FTPSITE = "FTP Site"
  28. Const L_DIRONLY = "You will be creating a new directory in the following directory:"
  29.  
  30. 'Page 3
  31. '=== Code Change RWS ==='
  32. ' Const L_SITE_NODENAME = "Site Description"
  33. Const L_WEB_SITE_NODENAME = "Web Site Description"
  34. Const L_FTP_SITE_NODENAME = "FTP Site Description"
  35. '=== End Code Change RWS ==='
  36.  
  37. Const L_SITE_NODENAME_DESC = "You can create a description for your site to identify it in Internet Services Manager."
  38.  
  39. '=== Code Change RWS ==='
  40. ' Const L_SITE_NAME = "Site Description:"
  41. Const L_WEB_SITE_NAME = "Web Site Description:"
  42. Const L_FTP_SITE_NAME = "FTP Site Description:"
  43. '=== End Code Change RWS ==='
  44. Const L_VDIR_NODENAME = "Virtual Directory Alias"
  45. Const L_VDIR_NODENAME_DESC = "What would you like this virtual directory to be named?"
  46. Const L_VDIR_NAME = "Alias to be used to access this virtual directory:"
  47. Const L_DIR_NODENAME = "Directory Name"
  48. Const L_DIR_NODENAME_DESC = "What would you like this directory to be named?"
  49. Const L_DIR_NAME = "Directory Name:"
  50. Const L_NONAME_ERR = "You must enter a name."
  51.  
  52. 'Page 4
  53. Const L_BINDINGS = "Site Bindings"
  54. Const L_BINDINGS_DESC = "How will your users connect to this site?"
  55. Const L_SELECTIP = "Select the IP Address to use for this site:"
  56. Const L_ENTERTCP = "TCP Port this site should use"
  57. Const L_ENTERSSL = "SSL Port this site should use"
  58. Const L_NOPORT_ERR = "You must enter a port."
  59.  
  60. 'Page 5
  61. Const L_PATH = "Path"
  62. Const L_PATH_DESC = "Where does your content reside?"
  63. Const L_ENTERPATH = "Enter the path for your home directory:"
  64. Const L_ALLOWANON = "Allow anonymous access to this site."
  65. Const L_BROWSE = "Browse..."
  66. Const L_NOPATH_ERR = "You must enter a path."
  67.  
  68. 'Page 6
  69. Const L_ACCESSPERMS = "Access Permissions"
  70. Const L_ACCESSPERMS_DESC = "What access permissions do you want to set for this site?"
  71. Const L_ALLOWREAD = "Users can read files"
  72. Const L_ALLOWSCRIPT= "Users can run scripts"
  73. Const L_ALLOWEXECUTE= "Users can run scripts and executable programs (EXEs)"
  74. Const L_ALLOWWRITE= "Users can write files"
  75. Const L_ALLOWDIRBROWSING = "Users can browse this directory"
  76. Const L_ALLOWREMOTE = "Site operators can administer this site remotely"
  77.  
  78. Const L_DEFAULTAPP_TEXT = "Default Application"
  79. Const L_DUPLICATEERR = "A node with this name already exists. Please try again with a unique name."
  80.  
  81. %>